home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / programmer / 7695 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.9 KB

  1. Path: soap.news.pipex.net!pipex!usenet
  2. From: m.hendry@dial.pipex.com (Mathew Hendry)
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: Re: MC 68060 !! <------------------
  5. Date: Sat, 20 Apr 96 20:57:18
  6. Organization: Private node.
  7. Distribution: world
  8. Message-ID: <19960420.451B18.12A3F@ak141.du.pipex.com>
  9. References: <NEWTNews.14962.829282744.rayon@pi-user.pi.net> <404.6684T915T2366@norconnect.no>
  10. NNTP-Posting-Host: ak141.du.pipex.com
  11. X-Newsreader: TIN [AMIGA 1.3 950726BETA PL0]
  12.  
  13. Kenneth C. Nilsen (kenneth@norconnect.no) wrote:
  14. : The 11-Apr-96 21:16:37, RAYON wrote in msg n/a : 
  15. : >    Does someone overhere knowz how to detect A MC 68060 in it's
  16. : >    Amiga (THE HARDWARE WAY, NOT VIA SYSTEM) ?... Tell me all about
  17. : >    it!.. I need thiz very badlY!...
  18. : Can't you use exec base (in worst case) ?
  19.  
  20. Execbase doesn't have a flag for the 68060 (since the 68060 was not available
  21. at AmigaOS's last release in 1993).
  22.  
  23. The full set of flags is currently (from INCLUDE:exec/execbase.h):
  24.  
  25. --- SNIP ---
  26.  
  27. /****** Bit defines for AttnFlags (see above) ******************************/
  28.  
  29. /*  Processors and Co-processors: */
  30. #define AFB_68010   0    /* also set for 68020 */
  31. #define AFB_68020   1    /* also set for 68030 */
  32. #define AFB_68030   2    /* also set for 68040 */
  33. #define AFB_68040   3
  34. #define AFB_68881   4    /* also set for 68882 */
  35. #define AFB_68882   5
  36. #define AFB_FPU40   6    /* Set if 68040 FPU */
  37. /*
  38.  * The AFB_FPU40 bit is set when a working 68040 FPU
  39.  * is in the system.  If this bit is set and both the
  40.  * AFB_68881 and AFB_68882 bits are not set, then the 68040
  41.  * math emulation code has not been loaded and only 68040
  42.  * FPU instructions are available.  This bit is valid *ONLY*
  43.  * if the AFB_68040 bit is set.
  44.  */
  45.  
  46. --- SNIP ---
  47.  
  48. Presumably AT will add additional flags if and when they release a new OS
  49. version, hopefully with extra flags for the PPC/Alpha/MIPS/SPARC/x86... ;)
  50.  
  51. -- Mat.
  52.